d2f1954fa08a0fbb3da6e12b52985f860c70ccab,jetty-websocket/websocket-common/src/main/java/org/eclipse/jetty/websocket/common/extensions/compress/CompressExtension.java,Flusher,compress,#Frame#boolean#,229

Before Change


            payload = getBufferPool().acquire(total, true);
            BufferUtil.flipToFill(payload);
            // Skip the last tail bytes bytes generated by SYNC_FLUSH
            payload.put(output, 0, total - TAIL_BYTES.length).flip();
            LOG.debug("Compressed {}: {}->{} chunk bytes", frame, length, total);

            boolean continuation = frame.getType().isContinuation() || !first;

After Change


            }

            // Skip the last tail bytes bytes generated by SYNC_FLUSH.
            payload = ByteBuffer.wrap(output, 0, outputLength - TAIL_BYTES.length);
            LOG.debug("Compressed {}: {}->{} chunk bytes", frame, inputLength, outputLength);

            boolean continuation = frame.getType().isContinuation() || !first;